putResultAsync

inline suspend fun <T> HttpClient.putResultAsync(urlString: String, noinline block: HttpRequestBuilder.() -> Unit = {}): Deferred<Result<T>>

Executes an asynchronous HTTP PUT request using the provided URL.

Return

A Deferred> representing the asynchronous operation.

Parameters

urlString

The URL for the PUT request.

block

Optional, allows customization of the request using HttpRequestBuilder.